home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / turbovis / tvtool17.zip / TOUTERR.H < prev    next >
Text File  |  1993-01-14  |  474b  |  26 lines

  1. /*  Copyright (C) 1993   Marc Stern  (internet: stern@mble.philips.be)  */
  2.  
  3. #if !defined(__TOUTERR_H_) && defined(Uses_TOutErr)
  4. #define __TOUTERR_H_
  5.  
  6. #include <iostream.h>
  7.  
  8.  
  9. class TRect;
  10.  
  11.  
  12. class TOutErr : public TApplication
  13. {
  14.   ostream_withassign _old_cout;
  15.   ostream_withassign _old_cerr;
  16.   ostream_withassign _old_clog;
  17.  
  18.   public:
  19.  
  20.   TOutErr( TRect& outbounds, ushort outbufsize, TRect& errbounds, ushort errbufsize );
  21.  
  22.   ~TOutErr();
  23.  
  24. };
  25.  
  26. #endif